home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / alrtthis.dxr / 00078.ls < prev    next >
Encoding:
Text File  |  1998-11-18  |  366 b   |  24 lines

  1. on exitFrame
  2.   go(the frame)
  3. end
  4.  
  5. on keyDown
  6.   case the key of
  7.     ENTER, RETURN:
  8.       doDefaultButton()
  9.   end case
  10. end
  11.  
  12. on doDefaultButton
  13.   global gDefaultButton
  14.   set cmd to the text of member "AlertCmd"
  15.   tell the stage
  16.     closeAlertWin()
  17.   end tell
  18.   set btnName to the text of member "AlertBtn"
  19.   tell the stage
  20.     do(cmd)
  21.     return btnName
  22.   end tell
  23. end
  24.